home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_c
/
cgraphix
/
cdisp.c
< prev
next >
Wrap
Text File
|
1986-04-24
|
391b
|
23 lines
/* «RM120»«PL99999»«TS4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76» */
#include <stdio.h>
#define EXTERN extern
#include <typedef.h>
extern int InitGraphic();
extern int LeaveGraphic();
main(argc, argv)
int argc;
char **argv;
{
int i;
InitGraphic(); /* init the system and screen */
LoadScreen(argv[1]);
inkey();
LeaveGraphic();
}